home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / communicator / aboutPopups.xul next >
Encoding:
Extensible Markup Language  |  2004-01-27  |  4.0 KB  |  109 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!-- ***** BEGIN LICENSE BLOCK *****
  4.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.    -
  6.    - The contents of this file are subject to the Mozilla Public License Version
  7.    - 1.1 (the "License"); you may not use this file except in compliance with
  8.    - the License. You may obtain a copy of the License at
  9.    - http://www.mozilla.org/MPL/
  10.    -
  11.    - Software distributed under the License is distributed on an "AS IS" basis,
  12.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.    - for the specific language governing rights and limitations under the
  14.    - License.
  15.    -
  16.    - The Original Code is mozilla.org code.
  17.    -
  18.    - The Initial Developer of the Original Code is
  19.    - Netscape Communications Corporation.
  20.    - Portions created by the Initial Developer are Copyright (C) 2002
  21.    - the Initial Developer. All Rights Reserved.
  22.    -
  23.    - Alternatively, the contents of this file may be used under the terms of
  24.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  25.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.    - in which case the provisions of the GPL or the LGPL are applicable instead
  27.    - of those above. If you wish to allow use of your version of this file only
  28.    - under the terms of either the GPL or the LGPL, and not to allow others to
  29.    - use your version of this file under the terms of the MPL, indicate your
  30.    - decision by deleting the provisions above and replace them with the notice
  31.    - and other provisions required by the LGPL or the GPL. If you do not delete
  32.    - the provisions above, a recipient may use your version of this file under
  33.    - the terms of any one of the MPL, the GPL or the LGPL.
  34.    -
  35.    - ***** END LICENSE BLOCK ***** -->
  36.  
  37. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  38. <?xml-stylesheet href="chrome://navigator/skin/navigator.css" type="text/css"?>
  39.  
  40. <!DOCTYPE dialog [
  41.   <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  42.   %brandDTD;
  43.   <!ENTITY % aboutPopupsDTD SYSTEM "chrome://communicator/locale/aboutPopups.dtd" >
  44.   %aboutPopupsDTD;
  45. ]>
  46.  
  47. <dialog id="aboutPopups"
  48.         buttons="accept,cancel,help"
  49.         title="&windowtitle.label;"        
  50.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  51.         style="width: 30em;"
  52.         onload="init();"
  53.         ondialogaccept="return onAccept();"
  54.         ondialoghelp="return doHelpButton();">
  55.  
  56.   <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  57.   <script type="application/x-javascript" src="chrome://communicator/content/utilityOverlay.js"/>
  58.  
  59.   <script type="application/x-javascript">
  60.     <![CDATA[
  61.  
  62.       var enableBlock = true;
  63.        
  64.       function init() {
  65.         if (!window.arguments[0])
  66.           document.getElementById("popupDesc").hidden = true;
  67.         else 
  68.           document.getElementById("popupDescAlt").hidden = true;
  69.       }
  70.  
  71.       function onAccept() {
  72.         var pref;
  73.         try {
  74.           var prefService = Components.classes["@mozilla.org/preferences-service;1"]
  75.                                       .getService(Components.interfaces.nsIPrefService);
  76.           pref = prefService.getBranch(null);
  77.         }
  78.         catch(ex) { }
  79.         
  80.         goPreferences("securityItem", "chrome://cookie/content/pref-popups.xul", "popupspref");
  81.       }
  82.  
  83.       function doHelpButton() {
  84.         openHelp("pop_up_blocking");
  85.         return true;
  86.       }
  87.  
  88.     ]]>
  89.   </script>
  90.  
  91.   <keyset id="dialogKeys"/>
  92.  
  93.   <description id="popupDesc">&popupDesc.label;</description>
  94.   <description id="popupDescAlt">&popupDescAlt.label;</description>
  95.   <vbox align="center">
  96.     <image id="popupImage"/>
  97.   </vbox>
  98.   <description>&popupNote1.label;</description>
  99.   <separator class="thin"/>
  100.   <description>&popupNote2.label;</description>
  101.   <spacer flex="1"/>
  102.   <hbox class="dialog-button-box" pack="center">
  103.     <button dlgtype="accept" label="&acceptButton.label;"/>    
  104.     <button dlgtype="cancel" label="&cancelButton.label;"/>
  105.     <button dlgtype="help"/>
  106.   </hbox>
  107.   
  108. </dialog>
  109.